time.Time.nsec (method)
20 uses
time (current package)
time.go#L175: func (t *Time) nsec() int32 {
time.go#L266: return ts > us || ts == us && t.nsec() > u.nsec()
time.go#L276: return ts < us || ts == us && t.nsec() < u.nsec()
time.go#L288: tc, uc = int64(t.nsec()), int64(u.nsec())
time.go#L309: return t.sec() == u.sec() && t.nsec() == u.nsec()
time.go#L466: return t.sec() == 0 && t.nsec() == 0
time.go#L619: return int(t.nsec())
time.go#L888: nsec := t.nsec() + int32(d%1e9)
time.go#L918: d := Duration(t.sec()-u.sec())*Second + Duration(t.nsec()-u.nsec())
time.go#L981: return Date(year+years, month+Month(months), day+days, hour, min, sec, int(t.nsec()), t.Location())
time.go#L1251: return t.unixSec()*1e3 + int64(t.nsec())/1e6
time.go#L1260: return t.unixSec()*1e6 + int64(t.nsec())/1e3
time.go#L1270: return (t.unixSec())*1e9 + int64(t.nsec())
time.go#L1301: nsec := t.nsec()
time.go#L1611: nsec := t.nsec()
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |